home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.11 / PCGAMER Disc 2.11 DEC 1996.iso / PATCHES / DG110.ZIP / INSTALL.BAT < prev   
DOS Batch File  |  1996-09-16  |  621b  |  42 lines

  1. @echo off
  2. cls
  3. if "%1" == "" goto NOPARAMS
  4.  
  5. :PARAMS
  6. echo The Jagged Alliance DEADLY GAMES Update to v1.10 will be installed 
  7. echo in %1:\%2. If you did NOT install the game there, 
  8. echo press CTRL + BREAK now and type INSTALL [path] (where [path] is
  9. echo the directory where the game was installed), otherwise
  10. pause
  11.  
  12. dg110 -d -o %1:\%2
  13.  
  14. %1:
  15. cd\
  16. cd %2
  17. type dg110.txt | more
  18. echo.
  19. echo Done! 
  20. echo.
  21. echo.
  22. echo.
  23.  
  24. goto END
  25.  
  26. :NOPARAMS
  27. echo.
  28. echo Usage:
  29. echo.
  30. echo INSTALL drive path
  31. echo.
  32. echo e.g.  install   c   games\deadly
  33. echo OR    install   c   deadly
  34. echo.
  35. echo.
  36. echo.
  37.  
  38. :END
  39.  
  40.  
  41.  
  42.